home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / solaris8_117000.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  48 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(13406);
  10.  script_version ("$Revision: 1.3 $");
  11.  name["english"] = "Solaris 8 (sparc) : 117000-05";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is missing Sun Security Patch number 117000-05
  17. ( Kernel Patch).
  18.  
  19. You should install this patch for your system to be up-to-date.
  20.  
  21. Solution : http://sunsolve.sun.com/search/document.do?assetkey=1-21-117000-05-1
  22. Risk factor : High";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Check for patch 117000-05"; 
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  family["english"] = "Solaris Local Security Checks";
  34.  script_family(english:family["english"]);
  35.  
  36.  script_dependencies("ssh_get_info.nasl");
  37.  script_require_keys("Host/Solaris/showrev");
  38.  exit(0);
  39. }
  40.  
  41.  
  42.  
  43. include("solaris.inc");
  44.  
  45. e =  solaris_check_patch(release:"5.8", arch:"sparc", patch:"117000-05", obsoleted_by:"", package:"FJSVhea SUNWcar.d SUNWcar.m SUNWcar.u SUNWcar.us SUNWcarx.u SUNWcarx.us SUNWcpc.u SUNWcpc.us SUNWcpcx.u SUNWcpcx.us SUNWcpr.m SUNWcpr.u SUNWcprx.u SUNWcsr SUNWcsu SUNWcsxu SUNWdrr.u SUNWdrr.us SUNWdrrx.u SUNWdrrx.us SUNWged SUNWgedu SUNWhea SUNWidn.u SUNWidnx.u SUNWmdb SUNWmdbx SUNWncar SUNWncarx SUNWusx.u SUNWwrsax.u SUNWwrsmx.u");
  46.  
  47. if ( e < 0 ) security_hole(0);
  48.